From: Florian Fainelli Date: Wed, 6 Aug 2008 15:32:57 +0000 (+0000) Subject: Fix lcd4linux compilation with 2.4 kernels X-Git-Url: http://git.openwrt.org/%22https:/collectd.org//%22/%22https:/collectd.org/%22?a=commitdiff_plain;h=a86897cf4ed27b61e6d53f9eb1a15ac0c667c302;p=openwrt%2Fsvn-archive%2Fpackages.git Fix lcd4linux compilation with 2.4 kernels SVN-Revision: 12215 --- diff --git a/utils/lcd4linux/patches/160-uinput_defs.patch b/utils/lcd4linux/patches/160-uinput_defs.patch new file mode 100644 index 000000000..5c7b98f79 --- /dev/null +++ b/utils/lcd4linux/patches/160-uinput_defs.patch @@ -0,0 +1,25 @@ +diff -urN lcd4linux-r877/drv_G15.c lcd4linux-r877.new/drv_G15.c +--- lcd4linux-r877/drv_G15.c 2008-06-01 22:47:45.000000000 +0200 ++++ lcd4linux-r877.new/drv_G15.c 2008-08-06 17:31:04.000000000 +0200 +@@ -42,6 +42,7 @@ + + #include + #include ++#include + #include + #include + +@@ -258,8 +259,13 @@ + } + memset(&device, 0, sizeof(device)); + strncpy(device.name, "G15 Keys", UINPUT_MAX_NAME_SIZE); ++#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,0) + device.id.bustype = BUS_USB; + device.id.version = 4; ++#else ++ device.idbus = BUS_USB; ++ device.idversion = 4; ++#endif + + ioctl(uinput_fd, UI_SET_EVBIT, EV_KEY); +